home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / langs / forst.zoo / forst / src / forst.s < prev    next >
Encoding:
Text File  |  1990-12-10  |  689 b   |  40 lines

  1. ; FORST.S: Forth for MC68000
  2. ; Copyright <C> John Redmond 1989,1990
  3. ; Public domain for non-commercial use.
  4. ;
  5.     section    text 
  6.     even 
  7. ;
  8.     include globals.s
  9.     include header.s
  10.     include    strtfin.s
  11. ;
  12. ; ForST system words:
  13. ;
  14.     include shell.s        ;this file MUST stay in this position
  15.     include actions.s
  16.     include compile.s
  17.     include    allmacs.s
  18.     include heads.s
  19.     include    bmaths.s
  20.     include vars.s
  21.     include io.s
  22.     include expect.s
  23.     include files.s
  24. ;
  25. ; user words:
  26. ;
  27.     include maths.s
  28.     include memory.s
  29.     include gemdos.s
  30.     include bios.s
  31.     include gem.s
  32.     include    vt52.s
  33.     include extend.s
  34. ;
  35.     bss
  36. ;
  37.     ds.b    wspace        ;space for code and stacks
  38.     ds.b    hspace        ;space for headers
  39. ;
  40.